home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / euphor14.zip / INSTALL.DOC < prev    next >
Text File  |  1996-10-16  |  6KB  |  171 lines

  1.         +-------------------------+
  2.         | How to install Euphoria |
  3.         +-------------------------+
  4.  
  5.  Configuration Information
  6.  -------------------------
  7.  To install Euphoria you need:
  8.     * a 386 or higher PC
  9.     * at least 640K of memory 
  10.       (in some cases you might also need a few hundred K 
  11.        of free extended memory. Check the MEM command.)
  12.     * 2 Mb of free hard disk space. 
  13.  
  14.  The Install Procedure 
  15.  ---------------------
  16.     1. cd into the directory containing the Euphoria files
  17.  
  18.     2. type: 
  19.          install
  20.  
  21.  
  22.  For instance, if you have Euphoria on a floppy you would type the
  23.  following two commands:
  24.  
  25.     a:            (or b:)
  26.     install
  27.  
  28.  If you have downloaded Euphoria and pkunzip'd in (say) C:\TMP you 
  29.  would type:
  30.  
  31.     cd c:\tmp
  32.     install
  33.  
  34.  If you happen to have unzipped into C:\EUPHORIA, that's fine, cd into it
  35.  and type: install.
  36.  
  37.  You can also install under Windows by double-clicking on install.bat.
  38.  
  39.  You will be asked which drive to put the EUPHORIA directory on. Later 
  40.  you will be asked to approve any changes to your autoexec.bat file. 
  41.  Finally, you need to reboot your machine so the new autoexec.bat will
  42.  take effect.
  43.  
  44.  After installing, see DOC\WHAT2DO.DOC for ideas on how to use this package. 
  45.  You should also read README.DOC if you haven't done so already.
  46.  
  47.  The install program is written in Euphoria. See install.ex.
  48.  
  49.         Enjoy!
  50.  
  51.  
  52.  How to uninstall Euphoria
  53.  -------------------------
  54.  You'll never want to do this but ...
  55.    1. delete the EUPHORIA directory
  56.    2. remove the 2 references to "EUPHORIA" from your autoexec.bat file
  57.  
  58.  
  59.  =============================================================================
  60.  If you have problems installing ...
  61.  -----------------------------------
  62.  * Try installing under plain DOS, outside of Windows. 
  63.  
  64.  * Disable or cut back programs such as SMARTDRV that may be consuming
  65.    large amounts of extended memory.
  66.  
  67.  * Try typing:
  68.      
  69.      SET CAUSEWAY=LOWMEM:80
  70.    
  71.    before you run install.bat
  72.        
  73.  * There are several possible reasons why the install program will decide not
  74.    to edit your autoexec.bat file. Your PATH may be too close to the 127 
  75.    character limit; autoexec.bat may be read-only; etc. If this happens you 
  76.    should follow the manual procedure part B below.
  77.  
  78.  * If your system does not use an autoexec.bat file (e.g. Windows NT and
  79.    possibly Windows 95) then set the EUDIR and PATH variables in whatever
  80.    way your system allows. If you have an autoexec.bat file, but it doesn't
  81.    contain a PATH command, you will have to create one that includes 
  82.    C:\EUPHORIA\BIN.
  83.  
  84.  * If you are very low on disk space the XCOPY command used by the install
  85.    program might fail, even though you seem to have enough space. Free up a 
  86.    few megabytes, and run install.bat again.
  87.    
  88.  If you need any help installing Euphoria, send mail to: 
  89.     Rapid Deployment Software
  90.     130 Holm Crescent
  91.     Thornhill, Ontario
  92.     L3T 5J3
  93.     CANADA 
  94.  
  95.  or contact us via e-mail: 
  96.     [72614,1667]               on Compuserve
  97.     72614.1667@compuserve.com  on the Internet
  98.     
  99.  Be sure to describe your machine configuration: 
  100.  memory, free extended memory, version of MS-DOS, etc.
  101.  
  102.  
  103.  =============================================================================
  104.  Manual Install Procedure (most people can ignore this)
  105.  ------------------------
  106.  In order to show exactly what the install procedure does, and to provide
  107.  support for people with special needs, or anyone who has trouble using the
  108.  automatic install procedure, we outline a set of manual steps below.
  109.  
  110.  Euphoria comes to you on either a floppy disk or a .zip file.
  111.  It contains 90+ files. Initially these will all be in one directory
  112.  on your floppy, or in a hard disk directory that you pkunzip'd into.
  113.  
  114.  You can install Euphoria on any drive and in any directory that you
  115.  want. Below we assume that you want to put it in C:\EUPHORIA.
  116.  
  117.  Part A - set up files
  118.  
  119.    1.  Make the EUPHORIA directory. e.g.
  120.  
  121.       mkdir c:\euphoria
  122.  
  123.    2.  Copy the 90+ files into it.
  124.       
  125.       copy *.* c:\euphoria
  126.  
  127.    3.  Change directories into c:\euphoria.
  128.  
  129.       c:
  130.       cd \euphoria
  131.  
  132.    4.  Organize the files into subdirectories.
  133.  
  134.       The install.ex program contains a list of the subdirectories
  135.       and the files that should go into each subdirectory. You could
  136.       arrange the files yourself, but it will be a lot faster if
  137.       you just type:
  138.         install
  139.       at this point and let the install program perform this step.
  140.       After asking you for the drive letter, it will detect that the 
  141.       earlier steps have been performed already. You don't have to 
  142.       accept any changes that it proposes to make to your autoexec.bat 
  143.       file.
  144.  
  145.  Part B - edit autoexec.bat
  146.  
  147.    5.  In the file  c:\autoexec.bat  add  c:\euphoria\bin  to the list of 
  148.        directories in your PATH command. You might use the MS-DOS EDIT
  149.        command or any other text editor to do this. e.g.
  150.  
  151.         edit c:\autoexec.bat
  152.  
  153.        (Although Euphoria is not fully installed at this point, you could 
  154.     type:
  155.         cd c:\euphoria\bin
  156.         ed c:\autoexec.bat
  157.         to edit using the Euphoria editor. See doc\ed.doc.)
  158.     
  159.    6.  In the same autoexec.bat file add a new line:
  160.  
  161.       set eudir=c:\euphoria
  162.  
  163.        The eudir environment variable indicates the full path to 
  164.        the main Euphoria directory. 
  165.  
  166.    7. Press Control-Alt-Delete to reboot. 
  167.       This will define your new PATH and EUDIR environment variables.
  168.  
  169.  ============================================================================
  170.  
  171.